home *** CD-ROM | disk | FTP | other *** search
- global gqtvrinstance, qtvrpath, guidenumber, gbarsprite, gslidersprite, glist, panlist, gcounter, panAngle, tileangle, FOV, ossprite, oslist, sectionmarker, spriteNum, setspeed
-
- on setmoviepoint
- set listdata to "ListData" && guidenumber
- set glist to value(field listdata)
- repeat with i = 1 to count(glist)
- add(oslist, getAt(getAt(glist, i), 1))
- add(panlist, getAt(getAt(glist, i), 2))
- end repeat
- sort(oslist)
- sort(panlist)
- end
-
- on synchronizing
- set currentsoundtime to the movieTime of sprite ossprite
- set value1 to getAt(getAt(glist, gcounter), 1)
- if count(glist) >= (gcounter + 1) then
- set value2 to getAt(getAt(glist, gcounter + 1), 1)
- else
- set value2 to value1
- end if
- if (currentsoundtime >= value1) and (currentsoundtime <= value2) then
- set panAngle to string(getAt(getAt(glist, gcounter), 2))
- set tileangle to string(getAt(getAt(glist, gcounter), 3))
- set FOV to string(getAt(getAt(glist, gcounter), 4))
- if (qtvrgetpanangle(gqtvrinstance) <> panAngle) or (gcounter = 1) then
- swingpanomovie(panAngle, tileangle, FOV, setspeed, "1")
- if setspeed = "4" then
- set setspeed to "1"
- end if
- set newnum to the number of member ("Sign" && guidenumber & "-" & gcounter)
- if newnum > 0 then
- set the memberNum of sprite sectionmarker to newnum
- end if
- end if
- set picnum to getAt(getAt(glist, gcounter), 5)
- if picnum > 0 then
- set spriteNum to 49 + picnum
- set the visible of sprite spriteNum to 1
- qtvrsetvisible(gqtvrinstance, 0)
- else
- set the visible of sprite spriteNum to 0
- qtvrsetvisible(gqtvrinstance, 1)
- qtvrupdate(gqtvrinstance)
- end if
- if value1 <> value2 then
- set gcounter to gcounter + 1
- end if
- end if
- end
-
- on checkpanpoint
- set newangle to float(qtvrgetpanangle(gqtvrinstance))
- add(panlist, newangle)
- set n to findPos(panlist, newangle) - 1
- if n = 0 then
- set n to 1
- end if
- repeat with i = 1 to count(glist)
- if getAt(getAt(glist, i), 2) = getAt(panlist, n) then
- set gcounter to i
- exit repeat
- end if
- end repeat
- set the movieTime of sprite ossprite to getAt(oslist, gcounter)
- deleteAt(panlist, findPos(panlist, newangle))
- set gcounter to gcounter - 1
- if gcounter = 0 then
- set gcounter to 1
- end if
- end
-
- on checkospoint
- set newsoundtime to the movieTime of sprite ossprite
- add(oslist, newsoundtime)
- set n to findPos(oslist, newsoundtime) - 1
- set compare1 to getAt(getAt(glist, n), 1)
- if n <> count(glist) then
- set compare2 to getAt(getAt(glist, n + 1), 1)
- else
- set compare2 to 0
- end if
- set gcounter to n
- set the movieTime of sprite ossprite to getAt(getAt(glist, gcounter), 1)
- deleteAt(oslist, findPos(oslist, newsoundtime))
- repeat with i = 1 to count(glist)
- if getAt(getAt(glist, i), 1) = compare1 then
- set gcounter to i
- exit repeat
- end if
- end repeat
- end
-
- on towhichsection sectionnumber
- set the movieTime of sprite ossprite to getAt(oslist, sectionnumber)
- set gcounter to sectionnumber
- set setspeed to "4"
- end
-